-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: [recent] Refactor recent display widget and session management #1005
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deepin pr auto review关键摘要:
是否建议立即修改: 代码审查反馈:
|
Kakueeen
force-pushed
the
session
branch
2 times, most recently
from
November 26, 2024 09:44
6281137
to
b5e8704
Compare
Refactored recent display widget to use a unified list view for both projects and documents, improving code organization and reducing duplication. Major changes include: - Combined project and document views into single RecentListView - Improved session management with dirty state tracking - Refactored session item widget to use animation for expand/collapse - Updated session service interface for better state handling - Simplified recent display widget UI layout and event handling Log: Refactor recent module UI components and session management
LiHua000
approved these changes
Nov 26, 2024
deepin-mozart
approved these changes
Nov 26, 2024
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deepin-mozart, Kakueeen, LiHua000 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Note
详情{
"src/plugins/codegeex/codegeexmanager.cpp": [
{
"line": "static const char *kUrlSSEChat = \"https://codegeex.cn/prod/code/chatCodeSseV3/chat\";",
"line_number": 29,
"rule": "S35",
"reason": "Url link | 9a3dc8cf24"
},
{
"line": "static const char *kUrlNewSession = \"https://codegeex.cn/prod/code/chatGlmTalk/insert\";",
"line_number": 31,
"rule": "S35",
"reason": "Url link | bed2c163c5"
},
{
"line": "static const char *kUrlDeleteSession = \"https://codegeex.cn/prod/code/chatGlmTalk/delete\";",
"line_number": 32,
"rule": "S35",
"reason": "Url link | 1c26bba3f3"
},
{
"line": "static const char *kUrlQuerySession = \"https://codegeex.cn/prod/code/chatGlmTalk/selectList\";",
"line_number": 33,
"rule": "S35",
"reason": "Url link | 354cff53d7"
},
{
"line": "static const char *kUrlQueryMessage = \"https://codegeex.cn/prod/code/chatGmlMsg/selectList\";",
"line_number": 34,
"rule": "S35",
"reason": "Url link | 63ba5cece9"
}
]
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Refactored recent display widget to use a unified list view for both projects and documents, improving code organization and reducing duplication. Major changes include:
Log: Refactor recent module UI components and session management